home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Archives
/
Timing
/
BigTimeV1_1.lha
/
bigtime
/
bin
/
user
/
UserTemplate.h
< prev
Wrap
C/C++ Source or Header
|
1995-10-19
|
977b
|
35 lines
/* --------------------------------------------------------------------------- */
/* Name: UserTemplate.h
* Author: aleph NULL (Silicon Based Life)
* Date: 8/10/95
* Comment: (c) Copyright 1995 Silicon Based Life
* :
*/
/* --------------------------------------------------------------------------- */
#ifndef USERTEMPLATE_H
#define USERTEMPLATE_H
/* --------------------------------------------------------------------------- */
/* #includes */
#include <exec/ports.h>
/* --------------------------------------------------------------------------- */
/* #defines */
#define DEFAULT_USER_PORT "BT_User_Port"
enum Event { OPENFACE, CLOSEFACE, CHIME, ALARM, TIME, PREFS, QUIT };
/* --------------------------------------------------------------------------- */
/* Structures */
struct UserMessage {
struct Message um_Message;
UBYTE um_Event;
};
/* --------------------------------------------------------------------------- */
#endif